home *** CD-ROM | disk | FTP | other *** search
/ Exploring Where & Why / Exploring Where & Why.iso / pc / Lib.cst / 00048_MemoryTools.ls < prev    next >
Encoding:
Text File  |  2004-07-11  |  413 b   |  32 lines

  1. -- 
  2. -- MemoryTools
  3. -- 
  4.  
  5. property ancestor
  6.  
  7.  
  8. on new me
  9.   -- set constants:
  10.   
  11.   -- initialize the ancestor:
  12.   set ancestor = new (script "RootAncestor")
  13.   
  14.   return me
  15. end
  16.  
  17.  
  18. -- clear out all of my stuff
  19. on destruct me
  20.   -- destruct my chain
  21.   if objectP (ancestor) then destruct (ancestor)
  22.   set ancestor = 0
  23. end
  24.  
  25.  
  26. on unloadCast me
  27.   if the freeBytes < (1600 * 1024) then 
  28.     unloadMember
  29.     unload
  30.   end if
  31. end
  32.